home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2013 September / PCgo_CD_13_09.iso / nw.pak / Unnamed File 000674.unknown < prev    next >
Encoding:
Text File  |  2012-12-14  |  5.2 KB  |  288 lines

  1. .help-window-outer {
  2.     position: absolute;
  3.     top: 64px;
  4.     left: 5%;
  5.     width: 90%;
  6.     bottom: 32px;
  7.     z-index: 2000;
  8. }
  9.  
  10. body.compact .help-window-outer {
  11.     top: 34px;
  12.     left: 0;
  13.     width: 100%;
  14.     bottom: 23px;
  15. }
  16.  
  17. .help-window-main {
  18.     max-height: 100%;
  19.     color: white;
  20.     background-color: rgba(17, 17, 17, 0.85);
  21.     display: -webkit-box;
  22.     -webkit-box-orient: vertical;
  23.     border-top-width: 0;
  24.     border-radius: 10px;
  25. }
  26.  
  27. body.compact .help-window-main {
  28.     height: 100%;
  29.     border-radius: 0;
  30. }
  31.  
  32. .help-window-caption {
  33.     border-bottom: solid 1px rgb(153, 153, 153);
  34.     margin: 0 8px;
  35.     padding: 0 2px;
  36.     line-height: 36px;
  37. }
  38.  
  39. .help-window-title {
  40.     font-size: 16px;
  41.     margin: 0;
  42. }
  43.  
  44. .help-content {
  45.     overflow-y: auto;
  46.     overflow-x: hidden;
  47.     scrollbar-width: 11px;
  48.     -webkit-box-flex: 1;
  49.     margin: 8px;
  50.     padding: 0 4px;
  51.     font-size: 13px;
  52. }
  53.  
  54. .help-window-main ::-webkit-scrollbar {
  55.     width: 11px;
  56. }
  57.  
  58. .help-window-main ::-webkit-scrollbar-corner,
  59. .help-window-main ::-webkit-resizer {
  60.     display: none;
  61. }
  62.  
  63. .help-window-main ::-webkit-scrollbar-thumb:vertical {
  64.     background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128, 128)), to(rgb(128, 128, 128)), color-stop(40%, rgb(96, 96, 96)));
  65.     border-radius: 5px;
  66.     min-height: 20px;
  67. }
  68.  
  69. .help-window-main ::-webkit-scrollbar-thumb:vertical:hover,
  70. .help-window-main ::-webkit-scrollbar-thumb:vertical:active {
  71.     background: -webkit-gradient(linear, left top, right top, from(rgb(176, 176, 176)), to(rgb(176, 176, 176)), color-stop(40%, rgb(144, 144, 144)));
  72. }
  73.  
  74. .help-window-main ::-webkit-scrollbar-track:vertical {
  75.     background: -webkit-gradient(linear, left top, right top, from(rgb(10, 10, 10)), to(rgb(32, 32, 32)), color-stop(25%, rgb(32, 32, 32)));
  76.     border-radius: 5px;
  77. }
  78.  
  79. .help-close-button {
  80.     border: 0;
  81.     padding: 0;
  82.     font-size: 14px;
  83.     color: rgb(222, 222, 222);
  84.     background: -webkit-gradient(radial, 30% 30%, 1, 50% 50%, 8, from(rgb(144, 144, 144)), to(rgb(96, 96, 96)));
  85.     border-radius: 8px;
  86.     height: 16px;
  87.     width: 16px;
  88.     line-height: 12px;
  89.     position: absolute;
  90.     top: 6px;
  91.     right: 6px;
  92. }
  93.  
  94. body.compact .help-content {
  95.     margin-bottom: 8px;
  96. }
  97.  
  98. .help-close-button:hover {
  99.     color: white;
  100. }
  101.  
  102. body.platform-mac .help-close-button {
  103.     left: 6px;
  104. }
  105.  
  106. body.platform-mac .help-window-main .tabbed-pane-header-contents {
  107.     margin-left: 27px;
  108. }
  109.  
  110. .help-container {
  111.     width: 100%;
  112.     -webkit-user-select: auto;
  113.     -webkit-column-width: 470px;
  114. }
  115.  
  116. body.platform-mac .help-container {
  117.     -webkit-column-width: 330px;
  118. }
  119.  
  120. .help-block {
  121.     display: inline-block;
  122.     width: 470px;
  123.     padding-bottom: 9px;
  124. }
  125.  
  126. .settings-tab.help-container {
  127.     -webkit-column-width: 410px;
  128. }
  129.  
  130. .settings-tab .help-block {
  131.     width: 410px;
  132. }
  133.  
  134. .help-line {
  135.     padding-bottom: 3px;
  136. }
  137.  
  138. .help-key-cell {
  139.     display: inline-block;
  140.     width: 270px;
  141.     text-align: right;
  142. }
  143.  
  144. body.platform-mac .help-key-cell {
  145.     width: 120px;
  146. }
  147.  
  148. .help-cell {
  149.     display: inline;
  150. }
  151.  
  152. .help-section-title {
  153.     font-weight: bold;
  154.     color: rgb(221, 221, 0);
  155. }
  156.  
  157. .help-key {
  158.     color: rgb(221, 221, 0);
  159. }
  160.  
  161. body.platform-mac .help-key {
  162.     font-family: Lucida Grande, sans-serif;
  163. }
  164.  
  165. .help-combine-keys, .help-key-delimiter {
  166.     color: white;
  167.     font-size: 9px;
  168.     font-weight: bold;
  169. }
  170.  
  171. .help-combine-keys {
  172.     margin: 0 0.3em;
  173. }
  174.  
  175. .help-key-delimiter {
  176.     margin: 0 0.5em;
  177. }
  178.  
  179. .help-content p {
  180.     margin: 3px 0;
  181. }
  182.  
  183. .help-content fieldset {
  184.     border: none;
  185.     margin-left: 7px;
  186. }
  187.  
  188. .help-content fieldset p {
  189.     border-left: 1px solid rgb(128,128,128);
  190.     margin: 0 0 0 6px;
  191.     padding-left: 3px;
  192. }
  193.  
  194. .help-content fieldset label {
  195.     padding-right: 4px;
  196. }
  197.  
  198. .help-content p.help-section {
  199.     margin: 0 0 15px 0;
  200. }
  201.  
  202. .settings-experiments-warning-subsection-warning {
  203.     color: rgb(200, 0, 0);
  204. }
  205.  
  206. .settings-experiments-warning-subsection-message {
  207.     color: rgb(150, 150, 150);
  208. }
  209.  
  210. #resolution-override-section {
  211.     margin-left: 13px;
  212. }
  213.  
  214. .help-content input[type=checkbox] {
  215.     height: 13px;
  216.     width: 13px;
  217.     margin: 0 4px 0 0;
  218.     vertical-align: -2px;
  219. }
  220.  
  221. body.platform-mac .help-content input[type=checkbox] {
  222.     vertical-align: -1px;
  223. }
  224.  
  225. .help-content input[type=radio] {
  226.     vertical-align: -2px;
  227. }
  228.  
  229. body.platform-mac .help-content input[type=radio] {
  230.     vertical-align: -1px;
  231. }
  232.  
  233. .help-content select {
  234.     background-color: rgb(64, 64, 64);
  235.     color: white;
  236.     border-color: black;
  237.     padding: 0 4px;
  238. }
  239.  
  240. .help-content select:disabled {
  241.     background-color: rgb(32, 32, 32);
  242.     color: graytext;
  243. }
  244.  
  245. .help-content option {
  246.     background-color: black;
  247.     color: white;
  248. }
  249.  
  250. body:not(.compact) #settings-screen .tabbed-pane {
  251.     height: auto;
  252. }
  253.  
  254. #settings-screen .tabbed-pane-header {
  255.     height: auto;
  256. }
  257.  
  258. #settings-screen .tabbed-pane-header-tabs {
  259.     padding-top: 6px;
  260. }
  261.  
  262. #settings-screen .tabbed-pane-header-tab {
  263.     background-color: transparent;
  264.     position: relative;
  265.     top: 1px;
  266.     text-shadow: none;
  267.     color: rgb(255, 255, 255);
  268.     height: 22px;
  269.     font-size: 13px;
  270.     padding: 1px 10px;
  271.     margin: 0;
  272. }
  273.  
  274. #settings-screen .tabbed-pane-header-tab.selected {
  275.     border-bottom: solid 1px rgb(51, 51, 51);
  276.     border-bottom-right-radius: 2px;
  277. }
  278.  
  279. #settings-screen .tabbed-pane-content {
  280.     margin: 8px;
  281.     padding: 0 4px;
  282. }
  283.  
  284. #settings-screen .help-content {
  285.     margin: 0;
  286.     padding: 0;
  287. }
  288.